gtk/gtkstylecascade.c: Fix formatting
authorChun-wei Fan <fanchunwei@src.gnome.org>
Thu, 30 Jun 2016 10:00:47 +0000 (18:00 +0800)
committerChun-wei Fan <fanchunwei@src.gnome.org>
Thu, 30 Jun 2016 10:00:47 +0000 (18:00 +0800)
My previous patch on this file did not take into the account of the
formatting, sorry!

gtk/gtkstylecascade.c

index 7a8950b0b05807a951a493fe4138b23130d80068..7d947b2f6002d6d24eb28ce74cd6e13a44683584 100644 (file)
@@ -50,12 +50,13 @@ gtk_style_cascade_iter_next (GtkStyleCascade     *cascade,
   for (cas = cascade, ix = 0; ix < iter->n_cascades; cas = cas->parent, ix++)
     {
       GtkStyleProviderData *data;
+
       if (iter->cascade_index[ix] <= 0)
         continue;
 
       data = &g_array_index (cas->providers,
-                                                   GtkStyleProviderData,
-                                                   iter->cascade_index[ix] - 1);
+                             GtkStyleProviderData,
+                             iter->cascade_index[ix] - 1);
       if (highest_priority_data == NULL || data->priority > highest_priority_data->priority)
         {
           highest_priority_index = ix;